From a7c824cbf152d82bf3842e207089b1d3377051cf Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 2 Mar 2007 12:11:10 +0000 Subject: [PATCH] tools: Advertise save/restore multiple VCPU contexts capability. This capability means that save/restore will remember contexts of all online VCPUs at the time of final guest suspend. Any initialised but offline VCPUs will not be saved! Signed-off-by: Keir Fraser --- tools/python/xen/xend/XendDomainInfo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index c18b577595..ddb173b65a 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -780,7 +780,8 @@ class XendDomainInfo: 'vm': self.vmpath, 'name': self.info['name_label'], 'console/limit': str(xoptions.get_console_limit() * 1024), - 'memory/target': str(self.info['memory_static_min'] * 1024) + 'memory/target': str(self.info['memory_static_min'] * 1024), + 'control/platform-feature-multiprocessor-suspend': str(1) } def f(n, v): -- 2.30.2